home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 2.toast / pc / sample code / quicktime / quicktimeintro / createmovie / common files / macprefix.h < prev    next >
Encoding:
Text File  |  2000-10-06  |  755 b   |  50 lines

  1. //////////
  2. //
  3. //    File:        MacPrefix.h
  4. //
  5. //    Contains:    Prefix file for our Macintosh projects.
  6. //
  7. //    Written by:    Tim Monroe
  8. //
  9. //    Copyright:    © 1999 by Apple Computer, Inc., all rights reserved.
  10. //
  11. //    Change History (most recent first):
  12. //       
  13. //       <1>         11/11/99    rtm        first file
  14. //
  15. //////////
  16.  
  17. #ifndef __Prefix_File__
  18. #define __Prefix_File__
  19.  
  20.  
  21. //////////
  22. //
  23. // header files
  24. //
  25. //////////
  26.  
  27. #define ACCESSOR_CALLS_ARE_FUNCTIONS 1
  28. #define OPAQUE_TOOLBOX_STRUCTS 1
  29. #define TARGET_API_MAC_CARBON 1
  30.  
  31. #include <ConditionalMacros.h>
  32.  
  33.  
  34. //////////
  35. //
  36. // compiler macros
  37. //
  38. //////////
  39.  
  40. #ifndef PASCAL_RTN
  41. #define PASCAL_RTN                        pascal
  42. #endif
  43.  
  44. #if TARGET_CPU_PPC
  45. #define SOUNDSPROCKET_AVAIL                1
  46. #else
  47. #define SOUNDSPROCKET_AVAIL                0
  48. #endif
  49.  
  50. #endif // __Prefix_File__